ComponentOne Bitmap for WinForms
C1.Win.C1DX.4.5.2 Assembly / C1.Util.DX.Direct2D Namespace / StrokeStyle Class / Create Method / Create(Factory,StrokeStyleProperties,Single[]) Method
an instance of Factory
A structure that describes the stroke's line cap, dash offset, and other details of a stroke.
An array whose elements are set to the length of each dash and space in the dash pattern. The first element sets the length of a dash, the second element sets the length of a space, the third element sets the length of a dash, and so on. The length of each dash and space in the dash pattern is the product of the element value in the array and the stroke width.

In This Topic
    Create(Factory,StrokeStyleProperties,Single[]) Method
    In This Topic
    Creates an StrokeStyle that describes start cap, dash pattern, and other features of a stroke.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Create( _
       ByVal factory As Factory, _
       ByRef properties As StrokeStyleProperties, _
       ByVal dashes() As System.Single _
    ) As StrokeStyle
    public static StrokeStyle Create( 
       Factory factory,
       ref StrokeStyleProperties properties,
       System.float[] dashes
    )

    Parameters

    factory
    an instance of Factory
    properties
    A structure that describes the stroke's line cap, dash offset, and other details of a stroke.
    dashes
    An array whose elements are set to the length of each dash and space in the dash pattern. The first element sets the length of a dash, the second element sets the length of a space, the third element sets the length of a dash, and so on. The length of each dash and space in the dash pattern is the product of the element value in the array and the stroke width.
    See Also